home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / dpmigcc5.zip / RSX / SOURCE / DJLIBRSX / _USER.H < prev    next >
C/C++ Source or Header  |  1994-05-27  |  789b  |  36 lines

  1. #if !defined (_SYS_USER_H)
  2. #define _SYS_USER_H
  3.  
  4. #define UMAGIC 0x10f
  5.  
  6. struct fpstate
  7. {
  8.   unsigned long state[27];
  9.   unsigned long status;
  10. };
  11.  
  12. struct user
  13. {
  14.   unsigned short u_magic;
  15.   unsigned short u_reserved1;
  16.   unsigned long  u_data_base;
  17.   unsigned long  u_data_end;
  18.   unsigned long  u_data_off;
  19.   unsigned long  u_heap_base;
  20.   unsigned long  u_heap_end;
  21.   unsigned long  u_heap_off;
  22.   unsigned long  u_heap_brk;
  23.   unsigned long  u_stack_base;
  24.   unsigned long  u_stack_end;
  25.   unsigned long  u_stack_off;
  26.   unsigned long  u_stack_low;
  27.   int *          u_ar0;
  28.   char           u_fpvalid;
  29.   char           u_reserved2[3];
  30.   struct fpstate u_fpstate;
  31.   unsigned long  u_reserved3[23];
  32.   unsigned long  u_regs[19];
  33. };
  34.  
  35. #endif /* !defined (_SYS_USER_H) */
  36.